home *** CD-ROM | disk | FTP | other *** search
- # Script "go" to start a gopher session
- #
- # The syntax is:
- # go [domain-name]
- # If a domain name is specified the gopher session will start at that site,
- # otherwise, the gopher session will start at the University of Minnesota
- #
- cd gopher # change to directory gopher
- if test -z "$1"
- then # There is no passed gopher site
- gopher consultant.micro.umn.edu
- else # There is a passed gopher site
- gopher $1
- fi # end if
- cd # change back to home directory